Cube Yogi
Cube Yogi
Leader in Zoho Solutions/Consultation

Open a Form as Popup window

Question

Answer

You can find the solution to the question from the video below

First we need a Workflow to open a popup

The Parameters for the Workflow are given below

The Code Snippet is as follows

if(Add_Customer)
{
	openUrl("#Form:Client","popup window","height=400px,width=500px");
	input.Add_Customer = !input.Add_Customer;
}

Next we need a Workflow to close the popup after saving the entry

The Code Snippet is as follows

openUrl("#Script:dialog.close","popup window");